home *** CD-ROM | disk | FTP | other *** search
/ The Trig Explorer / The Trig Explorer.iso / mac / Explorer / Ex_Pi.dxr / 00016.ls < prev    next >
Encoding:
Text File  |  1998-07-22  |  188 b   |  16 lines

  1. on enterFrame
  2.   set n to random(6)
  3.   if n <= 2 then
  4.     go("C")
  5.   end if
  6.   if n = 3 then
  7.     go("A")
  8.   end if
  9.   if n = 4 then
  10.     go("B")
  11.   end if
  12.   if n > 4 then
  13.     go("D")
  14.   end if
  15. end
  16.